Finds items containing any of the specified key values.

Implements FindKeys(IEnumerable,Order)

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public IndexQuery<T> FindKeys(
	IEnumerable keys,
	Order order
)
Visual Basic
Public Function FindKeys ( _
	keys As IEnumerable, _
	order As Order _
) As IndexQuery(Of T)

Parameters

keys
Type: System.Collections..::..IEnumerable
The key values to search for.
order
Type: C1.LiveLinq..::..Order
Optionally specifies the order of the key values to sort the result (Order.Unordered if sorting is not required).

Return Value

An object enumerating all items whose key values belong to the specified key value collection.

Implements

IIndexScanner<(Of <(<'T>)>)>..::..FindKeys(IEnumerable, Order)

See Also